home *** CD-ROM | disk | FTP | other *** search
- /* placestone.c - PlaceStone */
-
- #include "mac/quickdraw.h"
- #include "mac/osintf.h"
- #include "mac/toolintf.h"
- #include "othello.h"
-
-
-
- PlaceStone(row, col, color)
- int row, col, color;
- {
- Rect stone;
- GrafPtr saveport;
-
- GetPort(&saveport);
- SetPort(myWindow);
- stone.top = SCALE*(row) - SCALE/2 + 1;
- stone.left = SCALE*(col) - SCALE/2 + 1;
- stone.bottom = SCALE*(row) + SCALE/2;
- stone.right = SCALE*(col) + SCALE/2;
- EraseOval(&stone);
- switch (color) {
- case stoneWhite:
- FrameOval(&stone);
- break;
- case stoneBlack:
- PaintOval(&stone);
- break;
- }
- SetPort(saveport);
-
- --nStones[GameBoard[row][col] & stoneColor];
- GameBoard[row][col] =
- GameBoard[row][col] & ~stoneColor | color;
- ++nStones[color];
- }
-